/* ¹è³Ê ¿µ¿ª (Ã»·Ï»ö ¹è°æ) */
.gtx-banner {
  background-color: #0d4f93 ;   /* Ã»·Ï»ö ¹è°æ */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}


/* °ñµå ¹ÝÂ¦ÀÌ´Â ÅØ½ºÆ® (°­·Ä ¹öÀü) */
.gtx-text {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;


  color: transparent;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 20%),
    linear-gradient(45deg, #d4af37, #ffd700, #ffecb3, #d4af37);
  background-size: 200% 100%, 300% 300%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


  animation: shine 1.5s infinite linear, blink 1.5s infinite alternate;
}


/* ¹ÝÂ¦ÀÓ È¿°ú (ºûÀÌ ºü¸£°Ô ½ºÃÄ Áö³ª°¨) */
@keyframes shine {
  0% { background-position: -200% 0, 0% 50%; }
  50% { background-position: 200% 0, 100% 50%; }
  100% { background-position: -200% 0, 0% 50%; }
}


/* ±ô¹ÚÀÓ È¿°ú */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.85; }
  100% { opacity: 1; }
}